From: Richard M. Stallman Date: Tue, 25 May 1993 00:43:37 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96016 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=5b3bb7c63d5cda497d05c86a2f9216e864a3713d;p=emacs.git *** empty log message *** --- diff --git a/src/alloca.c b/src/alloca.c index 30efa5ae663..c04c0efebdb 100644 --- a/src/alloca.c +++ b/src/alloca.c @@ -66,9 +66,13 @@ typedef char *pointer; hand, the utilities in lib-src need alloca to call malloc; some of them are very simple, and don't have an xmalloc routine. - Everybody else should just call malloc. */ + Non-Emacs programs expect this to call use xmalloc. + + Callers below should use malloc. */ + #ifndef emacs -extern pointer malloc (); +#define malloc xmalloc +extern pointer xmalloc (); #endif /* Define STACK_DIRECTION if you know the direction of stack